Python  워드 읽 기 및 내 보 내기 코드 분석 실현

두 개의 간단 한 코드 가 워드 내 보 내기 와 워드 읽 기 를 실현 합 니 다.
기능 1:워드 내 보 내기,워드 의 내용 은?

코드:

from docx import Document
from docx.enum.text import WD_PARAGRAPH_ALIGNMENT #      、   。
from docx.enum.text import WD_TAB_ALIGNMENT,WD_TAB_LEADER #      
from docx.shared import Inches #      
from docx.shared import Pt #    、   
from docx.shared import RGBColor #      
from docx.shared import Length #    
from docx.oxml.ns import qn
import time
today=time.strftime("%Y{y}%m{m}%d{d}",time.localtime()).format(y=" ",m=" ",d=" ")

document=Document()
document.styles["Normal"].font.name=u'  '#          
document.styles["Normal"].element.rPr.rFonts.set(qn('w:eastAsia'),u'  ')#           


#           
p1=document.add_paragraph()
p1.alignment=WD_PARAGRAPH_ALIGNMENT.CENTER#       
run1=p1.add_run("    %s     "%today)
run1.font.name="    "
run1.font.size=Pt(21) #      21 
run1.font.bold=True #  
p1.space_after=Pt(5)#    5 
p1.space_before = Pt(5)#     5 

#         
i='  3'
p2 = document.add_paragraph()
run2 = p2.add_run("%s:" % i)
run2.font.name = "  _GB2312"
run2.element.rPr.rFonts.set(qn('w:eastAsia'), u'  _GB2312')
run2.font.size = Pt(16)
run2.font.bold = True

#         
p3 = document.add_paragraph()
run3 = p3.add_run("       ,         ,          :" )
run3.font.name = "  _GB2312"
run3.element.rPr.rFonts.set(qn('w:eastAsia'), u'  _GB2312')
run3.font.size = Pt(16)
run3.font.bold = True

#     
table=document.add_table(rows=3,cols=3,style='Table Grid')
table.cell(0,0).merge(table.cell(0,2))#      
table_run1=table.cell(0,0).paragraphs[0].add_run('XX     ')#         XX     
table_run1.font.name = u"  "
table_run1.element.rPr.rFonts.set(qn('w:eastAsia'), u'  ')
table.cell(0, 0).paragraphs[0].alighment=WD_PARAGRAPH_ALIGNMENT.CENTER#  
table.cell(1, 0).text='  '
table.cell(1, 1).text = '  '
table.cell(1, 2).text = '  '
table.cell(2, 0).text = today
table.cell(2, 1).text ='100'
table.cell(2, 2).text = ''

document.add_page_break()#   
document.save('    .docx')#  
설명 이 필요 한 건...
run3.font.name="모조 송GB2312"
run3.element.rPr.rFonts.set(qn('w:eastAsia'),u'모조 송GB2312')
이 두 문장 은 모두 시 뮬 레이 션 으로 글꼴 을 설정 합 니 다.GB 2312,두 가지 형식 으로 두 번 쓰 는 이 유 는 워드 가 중국어 지원 에 그다지 우호 적 이지 않 기 때문에 한 마디 더 써 야 합 니 다.
기능 2:워드 읽 기,워드 의 내용 은?

표 밖의 텍스트 를 읽 는 코드:

from docx import Document
document=Document("   .docx")
print("         :")
all_paragraphs=document.paragraphs
for paragraph in all_paragraphs:
  print(paragraph.text)
표 의 텍스트 코드 읽 기:

from docx import Document

document=Document("   .docx")
print("        :")
tables=document.tables
for i in range(len(tables)):
  tb=tables[i]#      
  tb_rows=tb.rows #       
  for i in range(len(tb_rows)):
    row_data=[]
    row_cells=tb_rows[i].cells#          
    for cell in row_cells:#     
      row_data.append(cell.text)
    print(''.join(row_data))
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기